home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-06-25 | 955 b | 45 lines | [TEXT/CWIE] |
- // ===========================================================================
- // LClipPicture.h ©1993-1998 Metrowerks Inc. All rights reserved.
- // ===========================================================================
-
- #ifndef _H_LClipPicture
- #define _H_LClipPicture
- #pragma once
-
- #include <LView.h>
-
- #if PP_Uses_Pragma_Import
- #pragma import on
- #endif
-
- PP_Begin_Namespace_PowerPlant
-
- // ---------------------------------------------------------------------------
-
- class LClipPicture : public LView {
- public:
- enum { class_ID = FOUR_CHAR_CODE('cPic') };
-
- LClipPicture();
- LClipPicture(
- const LClipPicture &inOriginal);
- LClipPicture(
- LStream *inStream);
-
- void SetPicture(PicHandle inPict);
- PicHandle GetPicture() { return mPICT; };
-
- protected:
- PicHandle mPICT;
-
- virtual void DrawSelf();
- };
-
- PP_End_Namespace_PowerPlant
-
-
- #if PP_Uses_Pragma_Import
- #pragma import reset
- #endif
-
- #endif